home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
System Booster
/
System Booster.iso
/
Texteditors
/
Origami
/
bindings
/
key_split.awk
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
AWK Script
|
1996-09-27
|
259 b
|
22 lines
BEGIN {
out=""
error=""
}
/^ *@start-reference-copy +[^ ]+ *$/ {
out=$2
next
}
/^ *@end-reference-copy*$/ {
out=""
}
out=="" {
next
}
{ if (substr($0,1,4)==";OCL")
print("@"substr($0,5)) >out
else
print($0) >out
next
}
#{{{}}}